π¨π» Writing My First C Program – A Step Deeper into Programming
π¨π» Writing My First C Program – A Step Deeper into Programming
A few days ago, I shared about writing my first Python program π.
Today, I am excited to share another important milestone — I wrote my first program in C language π».
Here’s what it looked like:
#include <stdio.h>
int main()
{
/*
Program : C Language
Author : Mayur B Gund
Date : 6 Sep 2025
*/
printf("Hello World,\n");
printf("Mayur B Gund here,\n");
printf("Entering into tech world.\n");
int a = 1;
printf("Day : %d", a);
return 0;
}
π Output:
Hello World,
Mayur B Gund here,
Entering into tech world.
Day : 1
This program may look simple, but for me it was powerful ✨.
It wasn’t just about printing text — it was about entering a new mindset of problem solving π§ .
π₯Learning Python and C Together :
- Python π gave me a smooth start with its simplicity — just a few lines of code and I was printing results.
- C ⚙️ feels more structured and detailed — I had to write headers, define main(), and carefully manage syntax.
- Both are teaching me unique lessons:
- Python → quick, beginner-friendly, helps me focus on logic.
- C → builds strong fundamentals, shows how computers actually work behind the scenes.
- By learning both, I feel I’m balancing ease of exploration π± with depth of understanding π¬.
π What This Means for Me :
Each program I write reminds me that small steps add up.
From printing “Hello World” to building real projects, this is the journey I am beginning.
With Python and C as my companions, I’m ready to dive deeper into the world of technology π.
![]() |
| C Language Program in OneCompiler |
Also read :

Comments
Post a Comment